home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000081_news@watsun.cc.columbia.edu _Sat May 22 15:22:15 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA05842
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 22 May 1999 15:22:15 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id PAA01906
  7.     for kermit.misc@watsun.cc.columbia.edu; Sat, 22 May 1999 15:04:29 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Carrier Detect problems
  11. Date: 22 May 1999 19:04:29 GMT
  12. Organization: Columbia University
  13. Message-ID: <7i6v3t$1rf$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3746effd.1268253@news.zip.com.au>,
  17. Graham Smith <gqs@zip.com.au> wrote:
  18. : I have just set up CKermit 7 Beta 6 on SuSE 6.1 Linux and am having
  19. : problems with the Carrier detection.
  20. : I am using a V34 modem...
  21. :
  22. Make and model?
  23.  
  24. : ... to dial a number of sites.
  25. How are you dialing?  With Kermit's DIAL command?  Did you give a SET MODEM
  26. TYPE command prior to the SET LINE command?
  27.  
  28. : If I dial another
  29. : V34 modem I do not have any problems but if I call a 2400 baud modem
  30. : the  modem sends "CARRIER 2400" after the handshake tahes place.
  31. : At this stage the CD lead is still low. Kermit appears to now check
  32. : the CD lead and still being low issues a statemet saying  that I have
  33. : lost carrier. 
  34. : About 2 to 5 seconds latter the modem sets the CD lead high.
  35. Of course the modem should set CD high at the same time it prints the 
  36. CONNECT message.
  37.  
  38. If you are using C-Kermit's DIAL command, opens the device in the "don't
  39. require carrier" mode so it can send AT commands to the modem.  After it
  40. gets the modem's CONNECT message (word or numeric result code) it changes
  41. the device to "require carrier" mode.  If your modem really delays 2-5
  42. seconds before turning on CD, then your script can PAUSE 5 seconds (more
  43. or less) before trying to do any i/o on the connection.
  44.  
  45. Or you can use SET MODEM TYPE UNKNOWN, which ignores all messages from
  46. the modem and just waits for CD to come on.  See the manual for details.
  47.  
  48. : If I run this as a script the modem is disconnected before the CD lead
  49. : has been set high. It does not matter if I set  CARRIER-WATCH OFF, the
  50. : modem still disconnects.
  51. : The script was working perfectly under Solaris X86 using CKermit
  52. : 6.0.192 using the same modems.
  53. : Any ideas as to what is going on?
  54. :  
  55. If the above suggestions didn't help, please send a copy of your script to
  56. kermit-support@columbia.edu and we'll take a look at it.
  57.  
  58. - Frank